Vocab
- perpendicular vs parallel
- perpendicular: intersect at a 90-degree angle
- parallel: same distance apart, and will never meet
Vecotrs
- Unit vector
- 0 vector (all 0s)
- Standard basis vector
- All vectors have at most 1, 1 element, and rest 0s eg. <0,1,0> or <1,0,0>
Dot Product
- Magitude (length of vector)
- scalar multiplication
- orthogonal = perpendicular
- a⋅b=0
- 2 lines intersect at a right angle (dot product =0)
- Vectors are parallel
- a⋅b=∥a∥∥b∥(θ=0∘)ORa⋅b=−∥a∥∥b∥(θ=180∘)
- Dot/Scalar Product
- a∗b=a1b1+a2b2+⋯+anbn
- geoMetric interp: ∥a∥∥b∥cosθ
- Projections
- Vector Projection: projab=∥a∥2a⋅ba
- or dotProduct/mag(a) ^2 ∗a
- Where project b unto a
- Scalar Projection: projab=∣∣b∣∣a⋅b
- project a unto b → dot / mag(a)
- ONCS:
- Steps:
- Normalize vector (div e/a component by magnitude)
- Find perpendicular
- For 2d, flip, negate if needed
- 3d, take cross product of any vector not parallel to v
- Linear combo for certain hat vector
- Distance btwn points in 3d cords system ?
- (x2−x1)2−(y2−y1)2−(z2−z1)2 adding as many planes as needed
- Find angle btwn 2 vectors
- Find values of x for angle between vector = 45deg
- v⋅w=∣∣v∣∣⋅∣∣w∣∣⋅cos(45)
- for v&w being some vector
- Find point to parametric line r(t) = ta and a
- d=∣∣a∣∣∣∣v×a∣∣
- distnace = mag(cross) / mag of a
- formula for the length of the a parametric curve cal
- ∫ab∣∣r′(t)∣∣dx
- (integral of mag of derative)
- Area of triangle
- 21∣v×w∣
- Normally magnitude of cross product of both vectors
- magnitude of the cross product
- area of the parallelogram formed by those two vectors
Cross Pproduct
- Cross Product ch 11.4 {cal3}
- What does a×b=0 tell us about both vectors?
- then both vectors are parallel vectors
- What does a×b=0 tell us abotu both vecotrs?
- cross product is orthogonal to both vectors
Determinent